home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
.net 2002 March
/
DotNetMagazine-Issue107-Coverdisc-NET107-02-03-PCMac.bin
/
pc
/
PC Software
/
free_browsing
/
DavesQckSearchDbar3-14
/
dqsd.exe
/
src
/
clean.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
2001-12-19
|
629b
|
24 lines
@echo off
REM This script scrubs the sources clean
REM Please don't check into cvs any files that are deleted by this script.
pushd %~dp0
pushd DQSDTools
if exist DQSDTools.h del /q DQSDTools.h
if exist DQSDTools.ncb del /q DQSDTools.ncb
if exist DQSDTools.opt del /q DQSDTools.opt
if exist DQSDTools.plg del /q DQSDTools.plg
if exist DQSDTools.tlb del /q DQSDTools.tlb
if exist DQSDTools_i.c del /q DQSDTools_i.c
if exist DQSDTools_p.c del /q DQSDTools_p.c
if exist dlldata.c del /q dlldata.c
if exist Debug rmdir /q /s Debug
if exist ReleaseMinDependency rmdir /q /s ReleaseMinDependency
popd
popd